home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000986_pjm@isis.cshl.org_Thu Sep 22 12:57:21 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  1KB

  1. Received: from lilith.cshl.org by cs.umb.edu with SMTP id AA09130
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Thu, 22 Sep 1994 16:57:24 -0400
  3. Received: from localhost (pjm@localhost) by lilith.cshl.org (8.5/8.5) id QAA10518; Thu, 22 Sep 1994 16:57:21 -0400
  4. Date: Thu, 22 Sep 1994 16:57:21 -0400
  5. From: Pat Monardo <pjm@isis.cshl.org>
  6. Message-Id: <199409222057.QAA10518@lilith.cshl.org>
  7. To: tex-k@cs.umb.edu
  8. Subject: Bug in tex-file.c, declaration of kpse_format_info
  9.  
  10.  
  11. Sorry for not trying to do this better, but I just fixed this
  12. bug and need to move on. I am working with dvipsk version 5.58a,
  13. using kpathsea version 2.0
  14.  
  15. You are not allocating enough kpse_format_info structs.
  16. Change line 34 from
  17.  
  18. kpse_format_info_type kpse_format_info[kpse_last_format]; to
  19. kpse_format_info_type kpse_format_info[kpse_last_format+1];
  20.  
  21. This was preventing me from using acc to compile dvipsk-kpathsea.
  22. It was laying out data segment differently and references past
  23. kpse_format_info saw non-zero data, preventing format initialisation.
  24.